home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / apptbk / winapi.bas < prev   
BASIC Source File  |  1995-05-09  |  406b  |  17 lines

  1. ' Type declarations
  2.  
  3. Type RECT
  4.     left As Integer
  5.     top As Integer
  6.     right As Integer
  7.     bottom As Integer
  8. End Type
  9.  
  10. ' Windows API declarations
  11.  
  12. Declare Sub InvertRect Lib "User" (ByVal hDC As Integer, lpRect As RECT)
  13. Declare Function GetDC Lib "User" (ByVal hWnd As Integer) As Integer
  14. Declare Function ReleaseDC Lib "User" (ByVal hWnd As Integer, ByVal hDC As Integer) As Integer
  15.  
  16.  
  17.